CODE 38. Unique Binary Search Trees

版权声明:本文为博主原创文章,转载请注明出处,谢谢!

版权声明:本文为博主原创文章,转载请注明出处:http://blog.jerkybible.com/2013/09/21/2013-09-21-CODE 38 Unique Binary Search Trees/

访问原文「CODE 38. Unique Binary Search Trees

Given n, how many structurally unique BST’s (binary search trees) that store values 1…n?
For example,
Given n = 3, there are a total of 5 unique BST’s.
1 3 3 2 1
\ / / / \ \
3 2 1 1 3 2
/ / \ \
2 1 2 3

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
public int numTrees(int n) {
// Start typing your Java solution below
// DO NOT write main() function
if (n <= 0) {
return 0;
}
return dfs(1, n);
}
int dfs(int start, int end) {
if (end - start <= 0) {
return 1;
} else if (end - start == 1) {
return 2;
} else if (end - start == 2) {
return 5;
}
int sum = 0;
for (int i = start; i <= end; i++) {
sum += dfs(start, i - 1) * dfs(i + 1, end);
}
return sum;
}
Jerky Lu wechat
欢迎加入微信公众号